Current Location: Home> Function Categories> asinh

asinh

Inverse hyperbolic sine
Name:asinh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic sine.

Definition and usage

asinh() function returns an inverse hyperbolic sine of a number.

Example

Returns the inverse hyperbolic sine value of different values:

 <?php
echo ( asinh ( 7 ) ;
echo ( asinh ( 56 ) ;
echo ( asinh ( 2.45 ) ) ;
?>

Try it yourself

grammar

 asinh ( x )
parameter describe
x Required. A number.

illustrate

Returns the inverse hyperbolic sine value of x , that is, the value whose hyperbolic sine is x .

Similar Functions
  • Get the pi value pi

    pi

    Getthepivalue
  • Logarithm with base 10 log10

    log10

    Logarithmwithbase10
  • Convert decimal to octal decoct

    decoct

    Convertdecimaltoocta
  • Returns exp(number) - 1, and can calculate the exact result even when the value of number is close to zero. expm1

    expm1

    Returnsexp(number)-1
  • Convert octal to decimal octdec

    octdec

    Convertoctaltodecima
  • Sine sin

    sin

    Sine
  • Find the minimum value min

    min

    Findtheminimumvalue
  • Absolute value abs

    abs

    Absolutevalue
Popular Articles